home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / mac / netCD41 / PC16.DIR / 00121_Script_121 < prev    next >
Text File  |  1997-12-08  |  445b  |  20 lines

  1. --end of a section script
  2.  
  3. on enterFrame
  4.   repeat with n = 30 to 48
  5.     if rollover(n) then
  6.       if not the puppet of sprite n then
  7.         puppetSprite n, TRUE
  8.         set the member of sprite n to the number of the member of sprite n +1
  9.       end if
  10.     else
  11.       puppetSprite n, FALSE
  12.     end if
  13.   end repeat
  14. end
  15.  
  16. on exitFrame
  17.   global gt
  18.   if gt=1 and soundBusy(1) then go to the frame
  19.   if gt=0 then go to the frame
  20. end